home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / groc_sh.h < prev    next >
C/C++ Source or Header  |  1999-03-17  |  3KB  |  68 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Header File Name: groc_sh.h
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 12/16/1997 
  9. // Date Last Modified: 03/18/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. General purpose search functions used with the grocery list
  32. database.
  33. */
  34. // ----------------------------------------------------------- //
  35. #ifndef __GROC_SH_HPP__
  36. #define __GROC_SH_HPP__
  37.  
  38. #include "grocery.h"
  39. #include "dllist.h"
  40. #include "btwalk.h"
  41.  
  42. enum GrocDBItem { // Database items used in global database searches
  43.   NAME,
  44.   BRAND,
  45.   STORE
  46. };
  47.  
  48. // Variable used to count the number of object found during a search
  49. extern int ObjectsFound;
  50.  
  51. // Global data structures used to organize and store btree nodes
  52. extern DLList<InMemCopy> GrocDB_SH_DLList; // Doubly Linked
  53. extern DLList<InMemCopy> *dllist;         // Doubly Linked
  54. extern DNode<InMemCopy> *dllistptr;       // DLList node pointer
  55.  
  56. void BtreeSearch(Btree *btx, int item, Grocery &grocery,
  57.          UString &str, int find_all = 0); 
  58.  
  59. void BtreeKeySearch(EntryKey &e, int item, Grocery &grocery, UString &str,
  60.             int find_all);
  61.  
  62. #endif  // __GROC_SH_HPP__ 
  63. // ----------------------------------------------------------- //
  64. // ------------------------------- //
  65. // --------- End of File --------- //
  66. // ------------------------------- //
  67.  
  68.